home *** CD-ROM | disk | FTP | other *** search
-
- //------------------------------------------------------------------->
- //
- // test-12.pov
- //
- // "Easy POV Oven"
- //
- // Written By: Paul T. Dawson
- // ptdawson@voicenet.com
- // http://www.voicenet.com/~ptdawson
- //
- // All code and techniques are PUBLIC DOMAIN - have fun with it!
- //
- //------------------------------------------------------------------->
- //
- // This file is for testing the "Wires" object only.
- //
- //------------------------------------------------------------------->
- //
- // All of the usual initializing.
-
- #include "colors.inc"
- #include "textures.inc"
- #include "golds.inc"
-
- camera { location < 0, 10, -22 > look_at < 0, 0, 0 > }
- light_source { < 0, 10, -10 > color rgb < 2, 2, 2 > }
- background { White }
- #declare R1 = seed(0)
-
- //------------------------------------------------------------------->
- //
- // Get it and show it.
-
- #include "wires.inc"
- object { Wires }
-
- //------------------------------------------------------------------->
- //
- // End of this file.
-
-